home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue70
/
system
/
Listing3.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
2001-05-02
|
114 b
|
6 lines
program xapp;
uses Libc;
begin
if fork = 0 then Writeln ('New Process') else Writeln ('Old Process');
end.